home *** CD-ROM | disk | FTP | other *** search
/ An Invitation to the Roland World of Music / Roland - An Invitation To The Roland World Of Music.bin / vb / vb30 / disk1 / readme.txt < prev    next >
Text File  |  1993-04-27  |  25KB  |  641 lines

  1.                                  
  2.                                  README.TXT
  3.  
  4.       Release Notes for Microsoft (R) Visual Basic (TM) Standard Edition
  5.  
  6.                                 Version 3.00
  7.  
  8.                   (C) Copyright Microsoft Corporation, 1993
  9.  
  10. This document contains release notes for Microsoft Visual Basic Standard
  11. Edition version 3.0 for Windows.  Information in this document is more 
  12. current than that in the manuals or online Help.
  13.  
  14. ------------------------
  15. How to Use This Document
  16. ------------------------
  17. To view README.TXT on screen in Windows Notepad, maximize the Notepad window.
  18.  
  19. To print README.TXT, open it in Windows Write, Microsoft Word, or another 
  20. word processor.  Then select the entire document and format the text in 
  21. 10-point Courier before printing.
  22.  
  23.      *******************************************************************
  24.      Read Part 1 - Software Installation Information - before installing.
  25.      *******************************************************************
  26.  
  27. ========
  28. Contents
  29. ========
  30.  
  31. Part    Description
  32. ----    -----------
  33.  1      Software Installation Information
  34.  2      Notes and Tips
  35.  3      Notes for "Learning Microsoft Visual Basic" Tutorial
  36.  4      Notes for Microsoft Visual Basic Online Help
  37.  5      Notes for Microsoft Visual Basic "Programmer's Guide"
  38.  6      Notes for Microsoft Visual Basic "Language Reference"
  39.  
  40. =========================================
  41. Part 1: Software Installation Information
  42. =========================================
  43.  
  44. To install Visual Basic, use the Program Manager or File Manager to start
  45. SETUP.EXE as you would any other Windows-based application.  For example,
  46. if you are installing from drive A:
  47.  
  48. - From the Program Manager File menu, choose Run.
  49. - In the Run dialog box, type A:SETUP and choose OK.
  50.  
  51.   Or
  52.  
  53. - From the File Manager, double-click the SETUP.EXE file icon 
  54.   on drive A.
  55.  
  56. ------------------------------------
  57. File Sharing for OLE and Data Access
  58. ------------------------------------
  59. You will need SHARE.EXE to enforce file and byte range locking if the 
  60. following programs are running simultaneously:
  61.  
  62. - Two Visual Basic applications that perform data access
  63. - Two instances of one Visual Basic application that performs data access
  64. - Microsoft Access and a Visual Basic application that performs data
  65.   access
  66.   
  67. If you are running Microsoft Windows 3.0 or Windows 3.1 (i.e. not
  68. Windows for Workgroups), you will need to change your AUTOEXEC.BAT
  69. as follows:
  70.  
  71.      SHARE /L:500 /F:5100
  72.  
  73. If the /L or the /F setting to SHARE has a larger value than listed here, 
  74. leave the setting as it is rather than reducing it.
  75.  
  76. Please make this change as soon as possible in your system.
  77.  
  78. Note
  79. ----
  80. If you ship .EXE files to users that use OLE or data access, they must
  81. add this setting to their AUTOEXEC.BAT file as well.
  82.  
  83. -----------------------
  84. Visual C++ and GRID.VBX
  85. -----------------------
  86. If you plan to install Microsoft Visual C++(TM) Development System for 
  87. Windows on your system, you may overwrite the grid control in your Windows 
  88. \SYSTEM directory.  Before installing Visual C++, make a backup of GRID.VBX.  
  89. If you have already installed Visual C++, you can re-install GRID.VBX by 
  90. running Setup again, choosing the Custom Installation button, and then 
  91. selecting the Microsoft Visual Basic option.
  92.  
  93. ======================
  94. Part 2: Notes and Tips
  95. ======================
  96. ----------------------------------------------------
  97. Data Access Compatibility - Visual Basic 2.0 and 3.0
  98. ----------------------------------------------------
  99. The new functionality of the Microsoft Access engine in Visual Basic 3.0 
  100. will affect the behavior of your VB 2.0 code.  Visual Basic 3.0 will 
  101. now assume that all SQL statements take the form of Access SQL (see the 
  102. Access documentation).  You can passthrough SQL to ODBC; as a second 
  103. parameter to the CreateDynaset method, you must specify &H40 to indicate 
  104. SQL passthrough.  Note that if you used backend-specific SQL with 
  105. CreateDynaset, you must add this parameter.
  106.  
  107. ----------
  108. ATI Driver
  109. ----------
  110. If you have an ATI Wonder card, moving the data control around at design
  111. time may cause a GP fault.  Contact ATI for more information.
  112.  
  113. ------------------------------------------------------
  114. BackColor Displayed Incorrectly with 256-Color Bitmaps
  115. ------------------------------------------------------
  116. If you have a 256-color bitmap in any control (or the form) that has a 
  117. BackColor property, it is possible that the background color of that object 
  118. will not display correctly if no color in the bitmap's palette matches the 
  119. background color.
  120.  
  121. ----------------------------------
  122. "Communication Link Failure" Error
  123. ----------------------------------
  124. If you receive a "Communication Link Failure" error when executing queries 
  125. against a Microsoft or Sybase SQL Server, you can retry the operation with 
  126. asynchronous execution disabled.  To do this, add the following entry to 
  127. your VB.INI file:
  128.  
  129.      [Debug]
  130.      RmtTrace=16
  131.  
  132. Visual Basic will continue to run synchronously until this line is removed 
  133. from VB.INI.
  134.  
  135. ---------------
  136. OLE Class Names
  137. ---------------
  138. To get a reference to a currently running OLE application by using its class 
  139. name, you must use:
  140.  
  141.       GetObject(, "classname")
  142.  
  143. that is, GetObject has to have an empty file name.  A file name of "" will 
  144. create a new instance of the server for class name.  This is contradictory 
  145. to what is documented.
  146.  
  147. --------------------------------
  148. OLE Control: In-Place Activation
  149. --------------------------------
  150. The Visual Basic OLE 2.0 control supports "Inside-Out Activation," which
  151. corresponds to "activation on GetFocus."  If a server designates this 
  152. capability and you specify AutoActivate = GETFOCUS, then:
  153.  
  154. - The object is initially deactivated the first time the control gets the 
  155.   focus.
  156. - The object is not fully deactivated when the control loses focus.  
  157.   Instead, the object is directed to tear down any floating user interface 
  158.   it may have, such as tool pallettes.
  159.  
  160. Note that AutoActivate = GETFOCUS is only supported if the server claims to 
  161. be "inside-out-capable," further reducing the possibility of looping
  162. re-activation when a non-insitu server closes and gives focus back to the 
  163. control.
  164.  
  165. -----------------------------------------------
  166. OLE Control: Pasting Objects from the Clipboard
  167. -----------------------------------------------
  168. Applications that provide objects behave differently when an object is 
  169. deleted.  When you delete an OLE object (set Action = 10), the object's 
  170. application may or not close.  If the application does close, any objects 
  171. on the Clipboard associated with that application may also be closed.  
  172. Because of this, you may not be able to cut an object (copy, then delete), 
  173. since deleting the object may also cause the data on the Clipboard to be 
  174. deleted.
  175.  
  176. Another instance of this behavior is when you try to copy an object, then 
  177. paste the object back onto itself.  This action may cause an error, because 
  178. in order to paste over an existing object, the existing object is first 
  179. deleted.  If the application associated with the object closes, and 
  180. subsequently deletes any objects it has on the Clipboard, the Clipboard no 
  181. longer contains an object to paste.
  182.  
  183. ---------------------------------
  184. OLE Control: The PasteOK Property
  185. ---------------------------------
  186. The following applies to objects on the Clipboard that come from an OLE 
  187. object:
  188.  
  189. - When PasteOK returns True, there is no guarantee that the Paste operation 
  190.   will succeed.  For example, PasteOK returns True and the Paste fails when
  191.   there is a linked object on the Clipboard and you are pasting into an 
  192.   object whose OleTypeAllowed property is set to 1 (Embedded).
  193. - PasteOK returns False when there is a linked object on the Clipboard and 
  194.   you are pasting into an object whose OleTypeAllowed property is set to 
  195.   0 (Linked).
  196.  
  197. ------------------------
  198. OLE Control: Link Target
  199. ------------------------
  200. You cannot activate a linked object as hidden (set Verb = -3).  You can, 
  201. however, activate an embedded object as hidden.
  202.  
  203. -----------------------------
  204. OLE Constants in CONSTANT.TXT
  205. -----------------------------
  206. OLE has also defined two new standard verbs relating to the two states that 
  207. an in-place-active object can have.  The following corresponding constants 
  208. have been added to CONSTANT.TXT:
  209.  
  210. Constant                  Description
  211. --------                  -----------
  212. VERB_INPLACEUIACTIVATE    Object is fully in-place active, including floating 
  213.                           UI.  Only one at a time per top-level form can be 
  214.                           in this state.
  215.                           
  216. VERB_INPLACEACTIVATE      Object is semi-active; it is running and ready to 
  217.                           respond to user input like clicking within the 
  218.                           object or changing the mouse pointer as the user 
  219.                           moves the mouse over different parts of the object.  
  220.                           Any number of objects can be in this state at a 
  221.                           time.
  222.  
  223. So, if you have a number of inside-out-capable objects on a form, where the 
  224. user has specified AutoActivate = ONGETFOCUS, the objects take turns at
  225. being in-place-UI-Active.  The new verbs allow the Visual Basic programmer to 
  226. cause these objects to be in the in-place-active state.  For example, if you 
  227. want to create a form with several of these objects, and you want the form 
  228. to be as responsive as possible to user input, you would put the following 
  229. code for each control into your Form_Load event handler:
  230.  
  231.      OLEControl.Verb = VERB_INPLACEACTIVATE
  232.      OLEControl.Action = OLE_ACTIVATE 
  233.  
  234. See the file CONSTANT.TXT for more information.
  235.  
  236. ------------------------------------
  237. Windows 3.0 and the PopupMenu Method 
  238. ------------------------------------
  239. Under Windows 3.0, pop-up menus invoked during a MouseDown event in some 
  240. cases do not recognize menu selections made with the mouse.  If that occurs, 
  241. you can still make a selection using the arrow keys and the Enter key.
  242.  
  243. ------------------------------------------
  244. Saving ASCII Forms in Source Code Managers
  245. ------------------------------------------
  246. When using source code managers, you need to change the read-only bit on the 
  247. binary file (.FRX) as well as the form file (.FRM) to save the form.
  248.  
  249. ============================================================
  250. Part 3: Notes for "Learning Microsoft Visual Basic" Tutorial
  251. ============================================================
  252. -----------------------
  253. Save Project Before Run
  254. -----------------------
  255. The Save Project Before Run Environment Option (under the Options menu)
  256. should be set to "No" when running the "Learning Visual Basic" tutorial.
  257. Some of the lessons may be impaired if this option is set to "Yes."  By
  258. default, this setting is "No."
  259.  
  260. ====================================================
  261. Part 4: Notes for Microsoft Visual Basic Online Help
  262. ====================================================
  263. ------------------
  264. Error Message Help
  265. ------------------
  266. Online Help is not available for dialogs or error messages that occur at
  267. design time.  For ISAM errors, use the Search dialog in Help.
  268.  
  269. --------------------------------
  270. "Couldn't find installable ISAM"
  271. --------------------------------
  272. An external file dynamic link library (DLL) file couldn't be found.  This 
  273. file is required for operations such as attaching or accessing external 
  274. tables.
  275.  
  276. Possible causes:
  277.  
  278. 1) An entry in the [Installable ISAM] section in VB.INI or <APPNAME>.INI is 
  279.    incorrect.  For example, this error occurs if you're accessing a Paradox 
  280.    external table, and the Paradox entry of the .INI file points to a 
  281.    nonexistent directory.  Exit Visual Basic, make necessary corrections in 
  282.    VB.INI or <APPNAME>.INI using Microsoft Windows Notepad or another text 
  283.    editor, restart Visual Basic, and try the operation again.
  284.  
  285. 2) One of the entries in the [Installable ISAM] section in VB.INI points to  
  286.    a network drive, and that drive isn't connected.  Check to make sure the 
  287.    network is available and the proper drive letter is established, and try 
  288.    the operation again.
  289.  
  290. =============================================================
  291. Part 5: Notes for Microsoft Visual Basic "Programmer's Guide"
  292. =============================================================
  293.  
  294. Page   Section/Note
  295. ----   ------------
  296. 188    The New Keyword
  297.  
  298.        In the example at the top of the page, the local form
  299.        variable F is declared with the New keyword using the 
  300.        Dim statement.  To make the form variable and the 
  301.        loaded form instance persist, use a Static or Global
  302.        variable instead.
  303.  
  304. 194    Determining the Type of an Object Variable
  305.  
  306.        You can use the If...TypeOf statement to determine the 
  307.        control type of a custom control:
  308.        
  309.             If TypeOf object Is objecttype  
  310.     
  311.        The identifier you use for 'object' is the class name of 
  312.        the custom control.  See the section "Specific Control 
  313.        Object Types" (p. 186) for more information.
  314.  
  315. 461    The Options Property
  316.         
  317.        The constant values shown are in hexidecimal and should be
  318.        preceded with the &H notation.  For example,  
  319.        DB_SQLPASSTHROUGH = &H40, not decimal 40.  See online Help
  320.        (Options Property) or the file DATACONS.TXT for the correct
  321.        values.
  322.  
  323. 462    The RecordSource Property
  324.  
  325.        The following text and example should be changed:
  326.  
  327.        For example, the following SQL query returns all of the columns
  328.        in the bibliography for authors who live in New York:
  329.  
  330.             Data1.DatabaseName = "BIBLIO.MDB"
  331.             Data1.RecordSource = "Select * from Titles where state = 'NY'"
  332.             Data1.Refresh
  333.  
  334.        The above should read:
  335.  
  336.        For example, the following SQL query returns all of the columns
  337.        in the bibliography for publishers based in New York:
  338.  
  339.             Data1.DatabaseName = "BIBLIO.MDB"
  340.             Data1.RecordSource = "Select * from Publishers where state = 'NY'"
  341.             Data1.Refresh
  342.  
  343. 465    Adding a New Record
  344.  
  345.        In the second paragraph in this section, the last sentence
  346.        should read, "Notice that using the buttons on the data 
  347.        control or one of the Move methods to move to another record
  348.        will automatically save your added record."
  349.  
  350. 530    Determining How an Object Is Displayed
  351.  
  352.        In the first paragraph, the second sentence should read, 
  353.        "the Icon check box," not "th eIcon check box."
  354.        
  355. 550    Creating Invisible Objects
  356.  
  357.        In the sample code, the following line has incorrect syntax:
  358.  
  359.             MyWord = ObjVar.SuggestWord MyWord
  360.       
  361.        The code should look like this:
  362.  
  363.              MyWord = ObjVar.SuggestWord (MyWord)
  364.  
  365. 552    Limitations in Visual Basic
  366.        
  367.        Under the discussion "Arrays and User-Defined Types," the third 
  368.        bulleted item should read: "You cannot...Assign the return value 
  369.        of a property or method to an array variable or a variable of a 
  370.        user-defined type." 
  371.  
  372. 554    Closing an Object
  373.  
  374.        In the paragraph after the sample code, second sentence:  It is 
  375.        not true that invoking a Close method on an object sets variables
  376.        that refer to the object to Nothing.
  377.  
  378. 582    Determining the Files You Need to Distribute
  379.  
  380.        The following additional files are required for distributing 
  381.        your Visual Basic applications:
  382.  
  383.        DLL Name       Required by (Professional Edition Only)
  384.        --------       ---------------------------------------
  385.        PDIRJET.DLL    Crystal Reports for Visual Basic
  386.        PDBJET.DLL     Crystal Reports for Visual Basic
  387.        MSAJT110.DLL   Crystal Reports for Visual Basic
  388.        MSAES110.DLL   Crystal Reports for Visual Basic
  389.        PDSODBC.DLL    ODBC and Crystal Reports for Visual Basic
  390.  
  391. =============================================================
  392. Part 6: Notes for Microsoft Visual Basic "Language Reference"
  393. =============================================================
  394.  
  395. Page   Section/Note
  396. ----   ------------
  397. 21-22  Action Property (OLE)
  398.  
  399.        In the Settings table, in Setting 5, the reference to None in the 
  400.        second sentence of the third paragraph should read as follows: 
  401.        "If the Paste was not successful, the OleType property will be set 
  402.        to 3 (None)."  In Setting 12, the constant should be 
  403.        OLE_READ_FROM_FILE, not ReadFromFile.  In Setting 14, the constant 
  404.        should be OLE_INSERT_OBJ_DLG.
  405.  
  406. 41     AutoActivate Property
  407.  
  408.        In the Note, replace the words "the double-click event" with 
  409.        "a DblClick event."
  410.  
  411. 53     BorderStyle Property
  412.  
  413.        The OLE control cannot have a setting of 2.  Remove the setting and 
  414.        description for Setting 2 in the OLE control table.
  415.  
  416. 65     Check Box Control
  417.  
  418.        Add DataField and DataSource to the Properties list.
  419.  
  420. 82     Color Property
  421.  
  422.        The "Applies To" line should read "Common dialog (Color dialog)."
  423.  
  424. 89     Common Dialog Control
  425.  
  426.        Add "FilterIndex" and "MaxFileSize" to the Properties (File dialogs) 
  427.        list.
  428.  
  429. 93     Connect Property
  430.  
  431.        In the Note, change "SourceTable" to "SourceTableName."
  432.  
  433. 97     Copies Property
  434.  
  435.        The "Applies To" line should read "Common dialog (Print dialog)."
  436.  
  437. 100    CreateDatabase Function
  438.  
  439.        In the code example, replace "False" with "DBVERSION10."  Also, in 
  440.        the table above the code example, replace "DB_COMPACT_ENCRYPT" with 
  441.        "DB_ENCRYPT."
  442.  
  443. 111    Data Control
  444.  
  445.        Add UpdateControls and UpdateRecord to the Methods list.
  446.  
  447. 112    Database Object
  448.  
  449.        In the Properties list, the QueryTimeout Property should be identified 
  450.        as being available only in the Professional Edition.
  451.  
  452. 117    DataText Property
  453.  
  454.        In the code example, change the two instances of "MSDRAW" to 
  455.        "MSGRAPH."
  456.  
  457. 134    DefaultExt Property
  458.  
  459.        The "Applies To" line should read "Common dialog (File dialogs)."  
  460.  
  461. 185    Field Object
  462.  
  463.        The Properties list should refer to SourceField and SourceTable, not 
  464.        SourceFieldName and SourceTableName.
  465.   
  466. 195    FileTitle Property
  467.  
  468.        The "Applies To" line should read "Common dialog (File dialogs)."  
  469.        Add the following to the Remarks section:
  470.          
  471.        Note: If the OFN_NOVALIDATE flag is set, the FileTitle property will 
  472.        not return a value.
  473.  
  474. 198    Filter Property (Common Dialog)
  475.  
  476.        At the beginning of the topic, add "Applies To...Common dialog (File 
  477.        dialogs)."  In the Remarks section, after the third paragraph, add 
  478.        this text:
  479.  
  480.        Here is an example of a Filter in which the user can choose text 
  481.        files or picture files that include bitmaps and icons:
  482.  
  483.             Text(*.txt)|*.txt|Pictures(*.bmp;*.ico)|*.bmp;*.ico
  484.  
  485. 199    FilterIndex Property
  486.  
  487.        The "Applies To" line should read "Common dialog (File dialogs)."
  488.  
  489. 229    Frame Control
  490.  
  491.        Add the Name Property to the Properties list.
  492.  
  493. 231    FromPage, ToPage Properties
  494.  
  495.        The "Applies To" line should read "Common dialog (Print dialog)."
  496.  
  497. 240    GetAttr Function
  498.  
  499.        The final Sub...End Sub block in code should read as follows:
  500.  
  501.        Sub File1_Click ()
  502.          Const ATTR_READONLY = 1, ATTR_HIDDEN = 2       ' Declare constants.
  503.          Const ATTR_SYSTEM = 4, ATTR_ARCHIVE = 32
  504.          Dim Attr, FName, Msg   ' Declare variables.
  505.          If Right(Dir1.Path, 1) = "\" Then      ' See if root file.
  506.             FName = Dir1.Path & File1.FileName  ' Get file path.
  507.          Else
  508.             FName = Dir1.Path & "\" & File1.FileName    ' Get file path.
  509.          End If
  510.          Attr = GetAttr(FName)  ' Get attributes.
  511.          If Attr > 7 Then Attr = Attr Xor ATTR_ARCHIVE  ' Disregard Archive.
  512.          Select Case Attr       ' Look up attributes.
  513.             Case 0: Msg = "Normal"
  514.             Case ATTR_READONLY: Msg = "Read-Only"
  515.             Case ATTR_HIDDEN: Msg = "Hidden"
  516.             Case ATTR_HIDDEN +  ATTR_READONLY: Msg = "Hidden and Read-Only"
  517.             Case ATTR_SYSTEM: Msg = "System"
  518.             Case ATTR_READONLY +  ATTR_SYSTEM: Msg = "Read-Only and System"
  519.             Case ATTR_HIDDEN +  ATTR_SYSTEM: Msg = "Hidden and System"
  520.             Case ATTR_READONLY + ATTR_HIDDEN +  ATTR_SYSTEM: Msg = "Read-Only," 
  521.                                               - + Msg = " Hidden, and System"
  522.          End Select
  523.          MsgBox UCase(FName) & " is a " & Msg & " file."   ' Display message.
  524.        End Sub
  525.  
  526. 256    hDC Property
  527.  
  528.        The Usage line should read: 
  529.  
  530.             {[form.] [commondialog. | picturebox.] | Printer.}hDC
  531.  
  532.        Also, the second paragraph of the Remarks should read, "With a common 
  533.        dialog control, this property returns a device context for the printer 
  534.        selected in the Print dialog box when the..." (the rest of the text 
  535.        remains the same).
  536.  
  537. 258    Height, Width Properties
  538.  
  539.        The See Also line should refer to the "Width # Statement," not the 
  540.        "Width Statement."
  541.  
  542. 274    Image Control
  543.  
  544.        Add DataField and DataSource to the Properties list.
  545.  
  546. 280    InitDir Property
  547.  
  548.        The "Applies To" line should read "Common dialog (File dialogs)."
  549.  
  550. 297    KeyDown, KeyUp Events
  551.  
  552.        The See Also should refer to the SendKeys Statement, not the SendKeys 
  553.        Method.
  554.  
  555. 299    KeyPress Events
  556.  
  557.        The See Also should refer to the SendKeys Statement, not the SendKeys 
  558.        Method.
  559.  
  560. 303    Label Control
  561.  
  562.        Add the DataField, DataSource, and Parent properties to the Properties 
  563.        list.
  564.  
  565. 336-   ListFields Method
  566. 338
  567.        In the second table, the fifth and sixth entries in the Field column 
  568.        should be SourceTable and SourceField, not SourceTableName and 
  569.        SourceFieldName.  The code example and the headings of the table 
  570.        below it should also refer to SourceTable and SourceField.
  571.  
  572. 345    ListTables Method
  573.  
  574.        In Remarks, the first paragraph under the TableType field table should 
  575.        read: "When you use the ListTables method to create a Snapshot, you 
  576.        can evaluate the contents of the Attributes field in the Snapshot by
  577.        referring to the TableDef property settings table in the Attributes
  578.        property topic.
  579.  
  580. 361    Max, Min Properties (Common Dialog)
  581.  
  582.        At the beginning of the topic, add "Applies To...Common dialog (Font, 
  583.        Print dialogs)."
  584.  
  585. 363    MaxFileSize Property
  586.  
  587.        The "Applies To" line should read "Common dialog (File dialogs)."
  588.  
  589. 390    Name Property
  590.  
  591.        The "Applies To" line should include the Database object.
  592.  
  593. 432    Partition Function
  594.  
  595.        In the code in Example 3, the second five lines of code duplicate 
  596.        the first five lines and should be deleted.
  597.  
  598. 439    Picture Box Control
  599.  
  600.        Add DataField and DataSource to the Properties list.
  601.  
  602. 444    PopupMenu Method
  603.  
  604.        In the Syntax line, there should be a comma immediately before the y.
  605.  
  606. 455    PrinterDefault Property
  607.  
  608.        The "Applies To" line should read "Common dialog (Print dialog)."
  609.  
  610. 536-   SourceFieldName, SourceTableName Properties
  611. 537
  612.        All references to SourceFieldName and SourceTableName in this topic 
  613.        should refer to "SourceField" and "SourceTable" instead.
  614.  
  615. 538    SourceTableName Property
  616.  
  617.        There should be a full entry for the "SourceTableName" topic.  See 
  618.        online Help for the text of this topic.
  619.  
  620. 565    Text Box Control 
  621.  
  622.        The second piece of art is incorrect.  It should show a text box 
  623.        on a form but instead shows a menu title and menu items on a form.
  624.        Also, add DataField and DataSource to the Properties list.
  625.  
  626. 595    Validate Event
  627.  
  628.        In the third paragraph following the Constants table, change "edit
  629.        buffer" to "copy buffer."
  630.  
  631. 619    Trappable Errors
  632.      
  633.        In Appendix B, the odd header is wrong.  It should read "Trappable
  634.        Errors," not "Trappable Error Messages."
  635.  
  636. 634    Trappable Error Messages
  637.        
  638.        In Table B.6 ("Data Access Trappable Error Messages"), Error #3137 
  639.        should be deleted.
  640.  
  641.